|
Расположение в меню |
---|
TechDraw → Размеры → Указать радиус |
Верстаки |
TechDraw |
Быстрые клавиши |
Нет |
Представлено в версии |
- |
См. также |
Указать диаметр |
The TechDraw RadiusDimension tool adds a radius dimension to a View. The dimension may be applied to any edge which is a circle or circular arc.
Measuring a circle, indicating the radius
Single tool
(default): press the down arrow to the right of the To change the properties of a dimension object either double-click it in the drawing or in the Tree view. This will open the Dimension dialog.
Dimension objects are vulnerable to the "topological naming problem". See TechDraw LengthDimension.
См. так же: TechDraw API и Основы составления скриптов FreeCAD.
The Radius Dimension tool can be used in macros and from the Python console by using the following functions:
dim1 = FreeCAD.ActiveDocument.addObject("TechDraw::DrawViewDimension", "Dimension")
dim1.Type = "Radius"
dim1.References2D=[(view1, "Edge1")]
page.addView(dim1)